home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 6984 / 6984.xpi / chrome / lazarus.jar / content / preferences-overlay.js < prev    next >
Text File  |  2009-11-24  |  858b  |  29 lines

  1.  
  2. /**
  3. */
  4. Lazarus.initClearNowButton = function(){
  5.     //it appears the "clearDataNow" button doesn't appear until the 
  6.     //privacy pane is selected, soooo
  7.     
  8.     if (Lazarus.$("clearDataNow")){
  9.         Lazarus.$("clearDataNow").addEventListener("command", Lazarus.onClearNow, false);
  10.     }
  11.     else {
  12.         Lazarus.$("panePrivacy").addEventListener("paneload", Lazarus.initClearNowButton, false);
  13.     }
  14. }
  15.  
  16. /**
  17. * clearDataNow button has been pushed.
  18. */
  19. Lazarus.onClearNow = function(evt){
  20.     //only fire the event if not privacy.sanitize.promptOnSanitize
  21.     Lazarus.getBrowser().Lazarus.fireClearPrivateDataIfNoPrompt();
  22. }
  23.  
  24. window.addEventListener("load", Lazarus.initClearNowButton, false);
  25.  
  26. //refresh the statusbar icon (if the user has set/unset their password)
  27. window.addEventListener("unload", Lazarus.getBrowser().Lazarus.refreshIcon, false);
  28.